home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / tex / makeinfo.zoo / src / makefile < prev    next >
Makefile  |  1991-10-25  |  400b  |  18 lines

  1. CC=gcc
  2. CFLAGS= -G -x -O -fcombine-regs -Wall -Wstrict-prototypes -mshort -s #-g
  3. EXT=16
  4. OBJS = makeinfo.o getopt1.o getopt.o
  5.  
  6. SLD=sym-ld
  7. BASE=c:/gnu/lib
  8. START=$(BASE)/crt0.o
  9. SLIBS=$(BASE)/gnu$(EXT).olb $(BASE)/iio$(EXT).olb
  10.  
  11. all: $(OBJS)
  12.     $(CC) $(CFLAGS) -o makeinfo.ttp $(OBJS) -liio$(EXT)
  13. #    $(SLD) -o makeinfo.sym $(START) $(OBJS) $(SLIBS)
  14.     toglclr makeinfo.ttp
  15.  
  16. clean:
  17.     rm $(OBJS)
  18.